14 lines
648 B
TypeScript
14 lines
648 B
TypeScript
export { registerPayClazzEntity } from './utils/payClazz';
|
|
export { registerPayChannelComponent } from './components/payConfig/system/web.pc';
|
|
export { registerFrontendPayRoutine } from './components/pay/detail/index';
|
|
export { registerApplicationProjection } from './utils/application';
|
|
import { EntityDict } from './oak-app-domain';
|
|
import { EntityDict as BaseEntityDict } from 'oak-domain/lib/types/Entity';
|
|
export declare const ExtraOnlineChannels: Array<{
|
|
entity: string;
|
|
name: string;
|
|
}>;
|
|
export declare function registerOnlinePayEntity<ED extends EntityDict & BaseEntityDict>(entity: keyof ED, options: {
|
|
name: string;
|
|
}): void;
|