8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import type { StrapiCommand } from '../types';
|
|
declare const action: () => Promise<void>;
|
|
/**
|
|
* `$ strapi console`
|
|
*/
|
|
declare const command: StrapiCommand;
|
|
export { action, command };
|
|
//# sourceMappingURL=console.d.ts.map
|