@twin.org/validate-locales 0.0.2-next.21 → 0.0.3-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,25 +0,0 @@
1
- /**
2
- * Model for a locale dictionary missing reference.
3
- */
4
- export interface ILocaleMissingReference {
5
- /**
6
- * The type of the missing reference.
7
- */
8
- type: string;
9
- /**
10
- * The key of the missing reference.
11
- */
12
- key: string;
13
- /**
14
- * The source file for the missing reference.
15
- */
16
- source: string;
17
- /**
18
- * The line number for the missing reference.
19
- */
20
- line: number;
21
- /**
22
- * The column number for the missing reference.
23
- */
24
- column: number;
25
- }