parcoursup/node_modules/@riotjs/compiler/compiler.d.ts

56 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-03-05 13:23:23 +01:00
import {RawSourceMap} from 'source-map'
export type CompilerOptions = {
template?: string
file?: string
scopedCss?: boolean
}
export type CompilerOutput = {
code: string
map: RawSourceMap
}
export type CompilerOutputFragments = {
template: object
css: object
javascript: object
}
export type PreProcessorOutput = {
code: string,
map?: RawSourceMap
}
export type PreProcessorMeta = {
tagName: string,
fragments: CompilerOutputFragments,
options: CompilerOptions,
source: string
}
export type ProcessorFunction = (code: string, meta: PreProcessorMeta) => PreProcessorOutput
export type PreProcessorsMap = {
template: Map<string, ProcessorFunction>
javascript: Map<string, ProcessorFunction>
css: Map<string, ProcessorFunction>
}
export type PostProcessorsMap = Map<string, ProcessorFunction>
export type PreProcessorType = 'template' | 'javascript' | 'css'
// public API
export function generateTemplateFunctionFromString(source: string, parserOptions: any): string
export function generateSlotsFromString(source: string, parserOptions: any): string
export function compile(source: string, options?: CompilerOptions): CompilerOutput
export function registerPreprocessor(
type: PreProcessorType,
name: string,
fn: ProcessorFunction
): PreProcessorsMap
export function registerPostprocessor(fn: ProcessorFunction): PostProcessorsMap