Type Alias ElementsConfig

ElementsConfig: {
    passThroughElementIds?: string[];
    refreshDimensions?: boolean;
    repairBindings?: boolean;
    syncInvalidIndices: (
        elements: readonly DucElement[],
        currentScope: Scope,
    ) => OrderedDucElement[];
}

Type declaration

  • OptionalpassThroughElementIds?: string[]

    Optional list of element ids that should bypass normal validation during restore and be passed through as-is to restoreElements.

  • OptionalrefreshDimensions?: boolean
  • OptionalrepairBindings?: boolean
  • syncInvalidIndices: (elements: readonly DucElement[], currentScope: Scope) => OrderedDucElement[]