@davidlj95/ngx-meta
Version:
Set your Angular site's metadata: standard meta tags, Open Graph, Twitter Cards, JSON-LD structured data and more. Supports SSR (and Angular Universal). Use a service. Use routes' data. Set it up in a flash! 🚀
8 lines (7 loc) • 364 B
TypeScript
import { Tree } from '@angular-devkit/schematics';
import { SourceFile } from 'typescript';
export declare function getAllTypescriptFiles(tree: Tree, options?: GetAllTypescriptFilesOptions): IterableIterator<[string, SourceFile]>;
/** @visibleForTesting **/
export type GetAllTypescriptFilesOptions = Partial<{
contentFilter: (content: string) => boolean;
}>;