5 lines
177 B
TypeScript
5 lines
177 B
TypeScript
import { IToken } from './Parser';
|
|
/**
|
|
* Finds all the direct childs of a specifyed type
|
|
*/
|
|
export declare function findChildrenByType(token: IToken, type: string): IToken[];
|