fix: most of the template blocks
This commit is contained in:
19
playground/src/app.d.ts
vendored
19
playground/src/app.d.ts
vendored
@@ -8,6 +8,23 @@ declare global {
|
||||
// interface PageState {}
|
||||
// interface Platform {}
|
||||
}
|
||||
|
||||
class Go {
|
||||
new(): {
|
||||
run: (inst: WebAssembly.Instance) => Promise<void>;
|
||||
importObject: WebAssembly.Imports;
|
||||
};
|
||||
}
|
||||
|
||||
const marka: {
|
||||
matchBlocks(s: string, t: string): string;
|
||||
detectType(markdown: string): string;
|
||||
parseFile(input: string): string;
|
||||
parseFileWithTemplate(markdown: string, template: string): string;
|
||||
listTemplates(): string;
|
||||
getTemplate(name: string): string;
|
||||
compileTemplate(source: string): string;
|
||||
};
|
||||
}
|
||||
|
||||
export {};
|
||||
export {};
|
||||
Reference in New Issue
Block a user