@turndown/library 0.0.50 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,6 +2,7 @@ export type GenericTurndownObject = Record<string, any> | any | undefined;
|
|
|
2
2
|
export type TurndownObject<T = GenericTurndownObject> = Record<string, T> | T | undefined;
|
|
3
3
|
export type ObjectValues<T> = T[keyof T];
|
|
4
4
|
export type ObjectKeys<T> = [keyof T];
|
|
5
|
+
export type Mode = "CREATE" | "EDIT" | "DELETE" | "DETAILS" | null;
|
|
5
6
|
export declare const IMAGE_ENTITY: {
|
|
6
7
|
USER_PROFILE: string;
|
|
7
8
|
PROPERTY: string;
|