dynoport
Version:
Dynoport is a CLI tool that allows you to easily import and export data from a specified DynamoDB table. It provides a convenient way to transfer data between DynamoDB and JSON files
12 lines (11 loc) • 319 B
TypeScript
interface Spinner {
start: () => Spinner;
stop: () => Spinner;
succeed: (text?: string) => Spinner;
fail: (text?: string) => Spinner;
info: (text?: string) => Spinner;
warn: (text?: string) => Spinner;
text: string;
}
export declare function createSpinner(text: string): Spinner;
export {};