mirror of
https://github.com/nestjs/docs.nestjs.com.git
synced 2026-02-21 20:31:32 +00:00
10 lines
331 B
TypeScript
10 lines
331 B
TypeScript
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
|
import { BasePageComponent } from '../../page/page.component';
|
|
|
|
@Component({
|
|
selector: 'app-scripts',
|
|
templateUrl: './scripts.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class CliScriptsComponent extends BasePageComponent {}
|