astro-ghostcms/.pnpm-store/v3/files/3b/f48c148f0388b57846630310e4e...

8 lines
273 B
Plaintext

import type { SourceMap } from 'rollup';
export type TransformStyleResult = null | {
code: string;
map: SourceMap | null;
deps: Set<string>;
};
export type TransformStyle = (source: string, lang: string) => TransformStyleResult | Promise<TransformStyleResult>;