infinity-forge
Version:
11 lines (10 loc) • 325 B
TypeScript
import { DynamicSection } from "./dynamic-section.js";
export type LoadAllDynamicSection = {
loadAll: (params: LoadAllDynamicSection.Params) => Promise<LoadAllDynamicSection.Model>;
};
export declare namespace LoadAllDynamicSection {
type Params = {
page?: string;
};
type Model = DynamicSection[];
}