Files
pyrofetes-frontend/node_modules/@angular/cdk/schematics/utils/parse5-element.d.ts
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

13 lines
527 B
TypeScript
Executable File

/**
* @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
*/
import { DefaultTreeAdapterMap } from 'parse5';
export type Element = DefaultTreeAdapterMap['element'];
export type ChildNode = DefaultTreeAdapterMap['childNode'];
/** Determines the indentation of child elements for the given Parse5 element. */
export declare function getChildElementIndentation(element: Element): number;