gatsby
Version:
Blazing fast modern site generator for React
11 lines (10 loc) • 427 B
TypeScript
import { IGatsbyState, IGatsbyPage } from "../redux/types";
interface IGatsbyPageComponent {
component: string;
componentChunkName: string;
}
export declare const resetLastHash: () => void;
export declare const getComponents: (pages: Array<IGatsbyPage>) => Array<IGatsbyPageComponent>;
export declare const writeAll: (state: IGatsbyState) => Promise<boolean>;
export declare const startListener: () => void;
export {};