interface Renderer {
    sourcemap?: {
        file: string;
        mappings: string;
        names: string[];
        sourceRoot?: string;
        sources: string[];
        sourcesContent?: string[];
        version: number;
    };
    deps(): string[];
    render(callback: Callback): void;
    set<T extends keyof stylus.Options>(key: T, val: stylus.Options[T]): this;
}

Properties

Methods

Properties

sourcemap?: {
    file: string;
    mappings: string;
    names: string[];
    sourceRoot?: string;
    sources: string[];
    sourcesContent?: string[];
    version: number;
}

Methods

  • Returns string[]