# core/ids/license.ids.ts

> 10 lines of code and 10 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-core-ids-license-ids-ts
Source text: https://banes-lab.com/assets/sources/source.abfd15ec7439783e597ba60bd16c3d9f5a3626c3856bb4447538410e6d078c88.generated.txt

## Definitions

- `LICENSE_TYPES_SECTION_ID` (lexical_declaration, line 1, exported)
- `LICENSE_OVERVIEW_SECTION_ID` (lexical_declaration, line 2, exported)
- `LICENSE_FREE_SECTION_ID` (lexical_declaration, line 3, exported)
- `LICENSE_PAID_SECTION_ID` (lexical_declaration, line 4, exported)
- `LICENSE_CONTRIBUTIONS_SECTION_ID` (lexical_declaration, line 5, exported)
- `LICENSE_HEADERS_SECTION_ID` (lexical_declaration, line 6, exported)
- `LICENSE_CONTACT_SECTION_ID` (lexical_declaration, line 7, exported)
- `LICENSE_FREE_CARD` (lexical_declaration, line 9, exported)
- `LICENSE_PAID_CARD` (lexical_declaration, line 10, exported)
- `LICENSE_DOCUMENTATION_CARD` (lexical_declaration, line 11, exported)

## Source

```typescript
export const LICENSE_TYPES_SECTION_ID = "license-types";
export const LICENSE_OVERVIEW_SECTION_ID = "license-overview";
export const LICENSE_FREE_SECTION_ID = "non-commercial-terms";
export const LICENSE_PAID_SECTION_ID = "commercial-terms";
export const LICENSE_CONTRIBUTIONS_SECTION_ID = "contributions";
export const LICENSE_HEADERS_SECTION_ID = "file-headers";
export const LICENSE_CONTACT_SECTION_ID = "contact";

export const LICENSE_FREE_CARD = "license-non-commercial";
export const LICENSE_PAID_CARD = "license-commercial";
export const LICENSE_DOCUMENTATION_CARD = "license-documentation";
```
