UNPKG

wle-aligner

Version:

Align two Wonderland Engine projects so that they can share, as much as possible, the same resources and structure

6 lines (5 loc) 276 B
import { type ComponentProperty, type Type } from "@wonderlandengine/api"; export interface ModifiedComponentProperty extends Omit<ComponentProperty, "type"> { type: Type | symbol; } export type ModifiedComponentPropertyRecord = Record<string, ModifiedComponentProperty>;