Files
obsidian-typst/types.d.ts
2023-07-23 12:15:26 +01:00

13 lines
234 B
TypeScript

export interface CompileCommand {
source: string;
path: string;
pixel_per_pt: number;
fill: string;
size: number;
display: boolean;
}
export interface WorkerRequest {
buffer: Int32Array,
path: string
}