UNPKG
bd-all-university-data
Version:
latest (1.0.0)
1.0.0
bd-all-university-data
/
dist
/
data.d.ts
10 lines
(9 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
University
{
name
:
string
;
type
:
'Public'
|
'Private'
;
website
:
string
;
logo
:
string
;
address
:
string
;
category
:
string
; }
export
declare
const
loadUniversities
:
() =>
University
[];