Files
memecoin-botV2/.pnpm-store/v10/files/6c/b01fc79c3977aadaf69c3c1238e2898f57d99bb0fa105abb6573f0d9f3de0eb1bd0b2fbf8b84055075cadf6e4aa672f1e70c16473869c636e87446d046d616

15 lines
348 B
Plaintext

type ModeWriter = (doc: Doc, modes: {
execution: "sync" | "async";
}) => void;
export declare class Doc {
args: string[];
content: string[];
indent: number;
constructor(args?: string[]);
indented(fn: (doc: Doc) => void): void;
write(fn: ModeWriter): void;
write(line: string): void;
compile(): any;
}
export {};