@lingui/extractor-vue
Version:
Vue single-file component extractor for the Lingui CLI
14 lines (11 loc) • 405 B
text/typescript
import { PerFileExtractorType } from '@lingui/conf';
interface VueExtractorConfig {
reactivityTransform?: boolean;
}
declare const createVueExtractor: (config?: VueExtractorConfig) => PerFileExtractorType;
/**
* @deprecated use {@link createVueExtractor} instead
*/
declare const vueExtractor: PerFileExtractorType;
export { createVueExtractor, vueExtractor };
export type { VueExtractorConfig };