roam-export
Version:
A set of tools to Filter/transform/render RoamResearch JSON export. Used in Roam Garden
19 lines (18 loc) • 541 B
TypeScript
import { Command, flags } from "@oclif/command";
declare class ExportCommand extends Command {
static description: string;
static flags: {
version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
filter: flags.IOptionFlag<string | undefined>;
};
static args: ({
name: string;
required: boolean;
} | {
name: string;
required?: undefined;
})[];
run(): Promise<void>;
}
export = ExportCommand;