mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
622 B
19 lines
622 B
import { TemplateRef } from '@angular/core';
|
|
|
|
export namespace Account {
|
|
export interface AuthWrapperComponentInputs {
|
|
readonly mainContentRef: TemplateRef<any>;
|
|
readonly cancelContentRef?: TemplateRef<any>;
|
|
}
|
|
|
|
//tslint:disable
|
|
export interface AuthWrapperComponentOutputs {}
|
|
export interface TenantBoxComponentInputs {}
|
|
export interface TenantBoxComponentOutputs {}
|
|
export interface PersonalSettingsComponentInputs {}
|
|
export interface PersonalSettingsComponentOutputs {}
|
|
export interface ChangePasswordComponentInputs {}
|
|
export interface ChangePasswordComponentOutputs {}
|
|
// tslint:enable
|
|
}
|