Configuration

This page summarizes the information & use of the configuration component.

Concepts

  • It is a stereotype of Component. They provide the same functionality as a regular component, but it exists for design purposes in order to keep SOLID principles.

Usage

Syntax:

@Configuration()

Example

import { Configuration } from "https://deno.land/x/mandarinets/mod.ts";

@Configuration()
export class MyConfiguration {
}

Last updated