4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
import type { Entry } from './entry.js';
|
|
declare const entry: Entry | (() => Promise<Entry>);
|
|
export default entry;
|