TeaSpeak-Client/modules/core/ui-loader/ShippedFileInfo.ts

10 lines
206 B
TypeScript
Raw Normal View History

2020-12-02 12:08:49 -05:00
export interface ShippedFileInfo {
channel: string,
version: string,
git_hash: string,
required_client: string,
timestamp: number,
filename: string
}
export default ShippedFileInfo;