mirror of
https://github.com/mii443/obsidian-typst.git
synced 2025-08-22 16:15:34 +00:00
13 lines
234 B
TypeScript
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
|
|
} |