agentlang
Version:
The easiest way to build the most reliable AI agents - enterprise-grade teams of AI agents that collaborate with each other and humans
98 lines • 3.41 kB
TypeScript
export declare const setupConfigClassic: () => {
$type: string;
editorAppConfig: {
codeResources: {
modified: {
uri: string;
text: string;
};
};
useDiffEditor: boolean;
languageDef: {
languageExtensionConfig: {
id: string;
};
monarchLanguage: {
keywords: string[];
operators: string[];
symbols: RegExp;
tokenizer: {
initial: ({
regex: RegExp;
action: {
cases: {
'@keywords': {
token: string;
};
'@default': {
token: string;
};
'@operators'?: undefined;
};
token?: undefined;
};
include?: undefined;
} | {
regex: RegExp;
action: {
token: string;
cases?: undefined;
};
include?: undefined;
} | {
include: string;
regex?: undefined;
action?: undefined;
} | {
regex: RegExp;
action: {
cases: {
'@operators': {
token: string;
};
'@default': {
token: string;
};
'@keywords'?: undefined;
};
token?: undefined;
};
include?: undefined;
})[];
whitespace: ({
regex: RegExp;
action: {
token: string;
next?: undefined;
};
} | {
regex: RegExp;
action: {
token: string;
next: string;
};
})[];
comment: ({
regex: RegExp;
action: {
token: string;
next?: undefined;
};
} | {
regex: RegExp;
action: {
token: string;
next: string;
};
})[];
};
};
};
editorOptions: {
'semanticHighlighting.enabled': boolean;
theme: string;
};
};
};
export declare const executeClassic: (htmlElement: HTMLElement) => Promise<void>;
//# sourceMappingURL=setupClassic.d.ts.map