9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
![]() |
export default function html(): {
|
||
|
name: string;
|
||
|
options(options: any): void;
|
||
|
transform(source: string, id: string): Promise<{
|
||
|
code: string;
|
||
|
map: import("magic-string").SourceMap;
|
||
|
} | undefined>;
|
||
|
};
|