You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
433 B
10 lines
433 B
6 months ago
|
import './runtimeHelpers';
|
||
|
import { CodegenResult, CompilerOptions } from './options';
|
||
|
import { DirectiveTransform, NodeTransform } from './transform';
|
||
|
export type TransformPreset = [
|
||
|
NodeTransform[],
|
||
|
Record<string, DirectiveTransform>
|
||
|
];
|
||
|
export declare function getBaseTransformPreset(prefixIdentifiers?: boolean): TransformPreset;
|
||
|
export declare function compile(template: string, options: CompilerOptions): CodegenResult;
|