(name: string, services: ZModelServices)
| 184 | } |
| 185 | |
| 186 | export function getModelRef(name: string, services: ZModelServices) { |
| 187 | return getDeclarationRef<DataModel>('DataModel', name, services); |
| 188 | } |
| 189 | |
| 190 | export function getAttributeRef(name: string, services: ZModelServices) { |
| 191 | return getDeclarationRef<Attribute>('Attribute', name, services); |
nothing calls this directly
no test coverage detected