UNPKG

275 BTypeScriptView Raw
1export interface StyleSource {
2 source: string;
3 media?: string;
4 moduleName?: string;
5 module?: {
6 [key: string]: string;
7 };
8 map?: any;
9}
10export default function createInjectorSSR(context: any): (id: string, style: StyleSource) => void;