Files
obsidian-typst/types.d.ts
2023-07-28 19:14:12 +01:00

14 lines
235 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
}