(
keyOrType: KeyOrType,
)
| 105 | } |
| 106 | |
| 107 | get<T = undefined, KeyOrType = any>( |
| 108 | keyOrType: KeyOrType, |
| 109 | ): IPublicTypeEditorGetResult<T, KeyOrType> | undefined { |
| 110 | return this.context.get(keyOrType as any); |
| 111 | } |
| 112 | |
| 113 | has(keyOrType: IPublicTypeEditorValueKey): boolean { |
| 114 | return this.context.has(keyOrType); |