6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
export type NextFlightActionEntryLoaderOptions = {
|
|
actions: string;
|
|
};
|
|
declare function nextFlightActionEntryLoader(this: any): string;
|
|
export default nextFlightActionEntryLoader;
|