UNPKG

ducjs

Version:

The duc 2D CAD file format is a cornerstone of our advanced design system, conceived to cater to professionals seeking precision and efficiency in their design work.

9 lines (8 loc) 379 B
import { Standard } from "../technical/standards"; import { Scope } from "../types"; export declare const restoreStandards: (standards: any, currentScope?: Scope) => Standard[]; /** * Checks if a given id is present in the standards array. * @returns true if found, false otherwise. */ export declare const isStandardIdPresent: (id: string, standards: Standard[]) => boolean;