mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-03-10 16:03:52 +01:00
7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
export type PropertyNamesError = ErrorObject<"propertyNames", {
|
|
propertyName: string;
|
|
}, AnySchema>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|