mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
360 B
TypeScript
11 lines
360 B
TypeScript
import {CompileElement} from './compile_element';
|
|
import * as compileControlModule from './compile_control';
|
|
|
|
/**
|
|
* One part of the compile process.
|
|
* Is guaranteed to be called in depth first order
|
|
*/
|
|
export interface CompileStep {
|
|
process(parent: CompileElement, current: CompileElement,
|
|
control: compileControlModule.CompileControl): void;
|
|
}
|