mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-09 09:31:25 +00:00
Fix cyclic path
This commit is contained in:
parent
2ac44bc4de
commit
ee4fe0475d
1 changed files with 15 additions and 1 deletions
|
|
@ -5,7 +5,21 @@
|
||||||
|
|
||||||
import {LocalizeInfo, LocalizeFunc, Options, LoadFunc} from 'vscode-nls';
|
import {LocalizeInfo, LocalizeFunc, Options, LoadFunc} from 'vscode-nls';
|
||||||
|
|
||||||
export {LocalizeInfo, LocalizeFunc, Options, LoadFunc};
|
export interface Options {
|
||||||
|
locale?: string;
|
||||||
|
cacheLanguageResolution?: boolean;
|
||||||
|
}
|
||||||
|
export interface LocalizeInfo {
|
||||||
|
key: string;
|
||||||
|
comment: string[];
|
||||||
|
}
|
||||||
|
export interface LocalizeFunc {
|
||||||
|
(info: LocalizeInfo, message: string, ...args: any[]): string;
|
||||||
|
(key: string, message: string, ...args: any[]): string;
|
||||||
|
}
|
||||||
|
export interface LoadFunc {
|
||||||
|
(file?: string): LocalizeFunc;
|
||||||
|
}
|
||||||
|
|
||||||
function format(message: string, args: any[]): string {
|
function format(message: string, args: any[]): string {
|
||||||
let result:string;
|
let result:string;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue