20 lines
368 B
TypeScript
20 lines
368 B
TypeScript
import { DivId } from "./divId";
|
|
|
|
export interface DivHelpContent {
|
|
_id: string;
|
|
divId: DivId | string;
|
|
content: string;
|
|
isActive: boolean;
|
|
}
|
|
|
|
export interface CheckDivHelpContent {
|
|
divHelpContent : DivHelpContent;
|
|
checked : boolean;
|
|
}
|
|
|
|
export interface DivHelpContentFilterOptions {
|
|
id : string;
|
|
active : Boolean;
|
|
text : RegExp;
|
|
}
|