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.
10 lines
339 B
10 lines
339 B
export declare const NONE: string[];
|
|
export declare const ALL: string[];
|
|
/**
|
|
* Determines if the given handler IDs are dirty or not.
|
|
*
|
|
* @param dirtyIds The set of dirty handler ids
|
|
* @param handlerIds The set of handler ids to check
|
|
*/
|
|
export declare function areDirty(dirtyIds: string[], handlerIds: string[] | undefined): boolean;
|