# presentation/records/license.record.ts

> 18 lines of code and 0 definitions.

Tree: Site tree
Language: typescript
Layer: domain
Canonical: https://banes-lab.com/anatomy/tree#file-presentation-records-license-record-ts
Source text: https://banes-lab.com/assets/sources/source.9aa71b020b582c015b10e6b5ac319719d2fee5bd6f1a690dec7004e4d43748f3.generated.txt

## Source

```typescript
import { LICENSE_DESCRIPTION, LICENSE_SHARE, LICENSE_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { LICENSE_ACCENT } from "#configuration/constants/page.constants";
import { LICENSE_ICON } from "#configuration/icons/page.icons";
import { LICENSE_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: LICENSE_ACCENT,
    description: LICENSE_DESCRIPTION,
    icon: LICENSE_ICON,
    id: LICENSE_PAGE,
    listed: true,
    load: async () => (await import("#presentation/views/license.view")).PAGE,
    mark: BADGE_MARK,
    order: 40,
    share: LICENSE_SHARE,
    title: LICENSE_TITLE,
});
```
