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.
22 lines
449 B
Plaintext
22 lines
449 B
Plaintext
11 months ago
|
/**
|
||
|
* @description z-index 管理器
|
||
|
* @author fangzhicong
|
||
|
*/
|
||
|
import Editor from '../index';
|
||
|
declare const tier: {
|
||
|
menu: number;
|
||
|
panel: number;
|
||
|
toolbar: number;
|
||
|
tooltip: number;
|
||
|
textContainer: number;
|
||
|
};
|
||
|
declare type Tier = typeof tier;
|
||
|
declare type TierKey = keyof Tier;
|
||
|
export default class ZIndex {
|
||
|
private tier;
|
||
|
private baseZIndex;
|
||
|
get(tierName?: TierKey): number;
|
||
|
init(editor: Editor): void;
|
||
|
}
|
||
|
export {};
|