mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-01-19 10:13:50 +01:00
6 lines
343 B
TypeScript
6 lines
343 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
import { DependenciesErrorParams, PropertyDependencies } from "../applicator/dependencies";
|
|
export type DependentRequiredError = ErrorObject<"dependentRequired", DependenciesErrorParams, PropertyDependencies>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|