UNPKG

303 BPlain TextView Raw
1import {PathReference} from '../filesystem/contracts';
2
3export interface OutputOptions {
4 output: PathReference;
5
6 // Inline CSS stylesheets into the output
7 inlineStylesheets: boolean;
8
9 // Inline SVG <use xlink:href> references to get around absolute path issues
10 inlineVectorGraphics: boolean;
11}
\No newline at end of file