11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import Graph from '../Graph';
|
|
import { OutputOptions } from '../rollup';
|
|
export interface Addons {
|
|
intro?: string;
|
|
outro?: string;
|
|
banner?: string;
|
|
footer?: string;
|
|
hash: Uint8Array;
|
|
}
|
|
export declare function createAddons(graph: Graph, options: OutputOptions): Promise<Addons>;
|