8 lines
324 B
TypeScript
8 lines
324 B
TypeScript
import { Effects } from '../types';
|
|
export type SetExportedUrls = (opts: {
|
|
effects: Effects;
|
|
}) => Promise<void>;
|
|
export type UpdateExportedUrls = (effects: Effects) => Promise<null>;
|
|
export type SetupExportedUrls = (fn: SetExportedUrls) => UpdateExportedUrls;
|
|
export declare const setupExportedUrls: SetupExportedUrls;
|