@curvenote/cli
Version:
CLI Client library for Curvenote
23 lines • 433 B
TypeScript
export type BaseOpts = {
yes?: boolean;
info: boolean;
resume?: boolean;
maxSizeWebp?: number;
};
export type GithubSource = {
repo?: string;
branch?: string;
path?: string;
commit?: string;
};
export type IdAndDate = {
id?: string;
date_created: string;
};
export type BaseLog = {
input?: {
opts?: BaseOpts;
};
source?: GithubSource;
};
//# sourceMappingURL=types.d.ts.map