@gasket/plugin-typescript
Version:
Gasket plugin for TypeScript support
14 lines (9 loc) • 353 B
TypeScript
import type { Plugin } from '@gasket/core';
import type { CreateContext, CreatePrompt } from 'create-gasket-app' with { 'resolution-mode': 'import' };
declare const plugin: Plugin;
export default plugin;
/* Externalize TS prompts for preset */
export function promptTypescript(
context: CreateContext,
prompt: CreatePrompt
): Promise<undefined>