UNPKG

nakedobjects.spa

Version:

Single Page Application client for a Naked Objects application.

13 lines (12 loc) 749 B
import { ICustomComponentConfigurator } from './custom-component.service'; import { ICustomErrorComponentConfigurator } from './custom-component.service'; export interface ICustomComponentConfigService { configureCustomObjects(custom: ICustomComponentConfigurator): void; configureCustomLists(custom: ICustomComponentConfigurator): void; configureCustomErrors(custom: ICustomErrorComponentConfigurator): void; } export declare class CustomComponentConfigService implements ICustomComponentConfigService { configureCustomObjects(custom: ICustomComponentConfigurator): void; configureCustomLists(custom: ICustomComponentConfigurator): void; configureCustomErrors(custom: ICustomErrorComponentConfigurator): void; }