osr-mono/packages/osr-ai-templates/common/system.d.ts
2025-01-29 17:53:27 +01:00

38 lines
1.0 KiB
TypeScript

export declare const resolvePackagePath: (path: string) => string;
export interface Role {
role: string;
content: string;
}
export declare const OSRTypescript: (mixin?: any[]) => {
role: string;
content: import("@plastichub/fs/interfaces").ReadWriteDataType;
}[];
export declare const Exports: (mixin?: any[]) => {
role: string;
content: import("@plastichub/fs/interfaces").ReadWriteDataType;
}[];
export declare const Commons: (mixin?: any[]) => {
role: string;
content: string;
}[];
export declare const Documents: (mixin?: any[]) => {
role: string;
content: string;
}[];
export declare const Typescript: (mixin?: any[]) => {
role: string;
content: string;
}[];
export declare const TypescriptLibraries: (mixin?: any[]) => {
role: string;
content: string;
}[];
export declare const TypescriptEnvironmentCLI: (mixin?: any[]) => {
role: string;
content: string;
}[];
export declare const Markdown: (mixin?: any[]) => {
role: string;
content: string;
}[];