Repository URL to install this package:
Version:
0.1.0-sandbox.5 ▾
|
/// <reference types="react" />
declare const NamedSluggedModel_base: {
new (obj?: Record<string, any> | undefined): {
_getFields(): {
name: {
name: string;
verboseName: string;
};
id: {
name: string;
verboseName: string;
};
};
renderLink(): import("react").ReactNode;
obj?: import("..").APIObject | undefined;
values?: Record<string, any> | undefined;
getCreateSections(): never[];
renderCreateFrame(): JSX.Element;
renderListFrame(): null;
renderDetailFrame(): null;
renderEditFrame(): null;
fields: Record<string, import("..").ModelFieldDefinition>;
routing?: import("..").ModelRoutingInterface | undefined;
api?: import("..").ModelBackendAPIInterface | undefined;
_getRouting(): import("..").ModelRoutingInterface | undefined;
_getApiConfig(): import("..").ModelAPIConfig | undefined;
_setupApi(): import("..").ModelBackendAPIInterface | undefined;
};
};
export default abstract class NamedSluggedModel extends NamedSluggedModel_base {
}
export {};