Current section

Files

Jump to
ckeditor5_phoenix dist src shared is-plain-object.d.ts
Raw

dist/src/shared/is-plain-object.d.ts

/**
* Utility to check if a value is a plain object (not an array, not null, not a class instance).
*
* @param value The value to check.
* @returns True if the value is a plain object, false otherwise.
*/
export declare function isPlainObject(value: unknown): value is Record<string, unknown>;
//# sourceMappingURL=is-plain-object.d.ts.map