One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
//HTML | |
<!-- (navigate)="handleNavigate($event)" --> | |
<!-- <span class="position-absolute" [class.dot]="specialDates && markSpecial(date)"></span> --> | |
/** | |
* This is less performant, but actually responds to special dates updating. | |
* A pipe did not do the trick, used for formatting data not setting classes | |
* https://github.com/ng-bootstrap/ng-bootstrap/issues/2391 | |
*/ |
export interface Card { | |
title: string; | |
label: string | null; | |
description: string | null; | |
action: Action; | |
} | |
export interface Action { | |
title: string; | |
url: string; |
import { Project } from 'ts-morph' | |
/** | |
* Get the scope of the NestJS project by specifying its tsconfig. | |
*/ | |
const project = new Project({ | |
tsConfigFilePath: 'tsconfig.json', | |
}) | |
/** |
public interface IRedirectProcessor | |
{ | |
string Process(ResultExecutedContext context); | |
} |