infinity-forge
Version:
9 lines (8 loc) • 314 B
TypeScript
import { DynamicSection } from "./dynamic-section.js";
export type CreateDynamicSection = {
create: (params: CreateDynamicSection.Params) => Promise<CreateDynamicSection.Model>;
};
export declare namespace CreateDynamicSection {
type Params = Omit<DynamicSection, "id">;
type Model = DynamicSection;
}