13 строки
273 B
TypeScript
13 строки
273 B
TypeScript
|
//
|
||
|
// Copyright (c) Microsoft.
|
||
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||
|
//
|
||
|
|
||
|
export type ConfigGitHubRootLibrary = {
|
||
|
library: ConfigGitHubLibrary;
|
||
|
};
|
||
|
|
||
|
export type ConfigGitHubLibrary = {
|
||
|
userAgent: string;
|
||
|
};
|