UNPKG
amourlinguini
Version:
latest (1.3.1)
1.3.1
A JSON-based translation file manager.
github.com/KevinNovak/Linguini
KevinNovak/Linguini
amourlinguini
/
dist
/
models
/
categorized-location.d.ts
8 lines
(7 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
Categorized
{ [
name
:
string
]:
Location
|
string
; }
export
interface
Location
{ [
name
:
string
]:
string
; }
export
declare
const
instanceOfLocation
:
(
object
:
any
) =>
object
is
Location
;