( object: any, key: string | symbol, )
| 29 | const PROPERTIES = Symbol.for('@revideo/2d/decorators/properties'); |
| 30 | |
| 31 | export function getPropertyMeta<T>( |
| 32 | object: any, |
| 33 | key: string | symbol, |
| 34 | ): PropertyMetadata<T> | null { |
| 35 | return object[PROPERTIES]?.[key] ?? null; |
| 36 | } |
| 37 | |
| 38 | export function getPropertyMetaOrCreate<T>( |
| 39 | object: any, |
no outgoing calls
no test coverage detected