/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/forms/signals/src/api/symbols.ts
17 строк
486 B
Kristiyan Kostadinov
fix(forms): add utility to assert that value is a field tree
29 июл 2026, 18:53
29 июл 2026, 18:53
2a14184
Код
Авторство
О чём код?
/*! * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /** * Symbol used to retain generic type information when it would otherwise be lost. */ export declare const ɵɵTYPE: unique symbol; /** * Symbol used to indicate that a value is a field tree. */ export const FIELD_TREE: unique symbol = /* @__PURE__ */ Symbol('FIELD_TREE');