You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
463 B
TypeScript
20 lines
463 B
TypeScript
import { EventEmitter } from '@angular/core';
|
|
export declare class InplaceDisplay {
|
|
}
|
|
export declare class InplaceContent {
|
|
}
|
|
export declare class Inplace {
|
|
active: boolean;
|
|
closable: boolean;
|
|
disabled: boolean;
|
|
style: any;
|
|
styleClass: string;
|
|
onActivate: EventEmitter<any>;
|
|
onDeactivate: EventEmitter<any>;
|
|
hover: boolean;
|
|
activate(event: any): void;
|
|
deactivate(event: any): void;
|
|
}
|
|
export declare class InplaceModule {
|
|
}
|