(obj: any)
| 13 | } |
| 14 | |
| 15 | export function isVariable(obj: any): obj is Variable { |
| 16 | if (!obj || typeof obj !== 'object') { |
| 17 | return false; |
| 18 | } |
| 19 | return obj.type === 'variable'; |
| 20 | } |
| 21 | |
| 22 | export function isUseI18NSetter(prototype: any, propName: string) { |
| 23 | const configure = prototype?.options?.configure; |
no outgoing calls
searching dependent graphs…