-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.web.ts
More file actions
27 lines (25 loc) · 1.08 KB
/
index.web.ts
File metadata and controls
27 lines (25 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Web-specific exports (excludes Mongoose entities)
export * from './common/dto/Page.dto';
export * from './common/dto/PageQuery.dto';
export * from './common/dto/types';
export * from './song/dto/CustomInstrumentData.dto';
export * from './song/dto/FeaturedSongsDto.dto';
export * from './song/dto/SongListQuery.dto';
export * from './song/dto/SongPage.dto';
export * from './song/dto/SongPreview.dto';
export * from './song/dto/SongStats';
export * from './song/dto/SongView.dto';
export * from './song/dto/ThumbnailData.dto';
export * from './song/dto/UploadSongDto.dto';
export * from './song/dto/UploadSongResponseDto.dto';
export * from './song/dto/types';
// Note: song.entity is excluded for web builds
export * from './user/dto/CreateUser.dto';
export * from './user/dto/GetUser.dto';
export * from './user/dto/Login.dto copy';
export * from './user/dto/LoginWithEmail.dto';
export * from './user/dto/NewEmailUser.dto';
export * from './user/dto/SingleUsePass.dto';
export * from './user/dto/UpdateUsername.dto';
export * from './user/dto/user.dto';
// Note: user.entity is excluded for web builds