diff --git a/Lib/dist/index.d.ts b/Lib/dist/index.d.ts deleted file mode 100644 index e2ecb49..0000000 --- a/Lib/dist/index.d.ts +++ /dev/null @@ -1,46 +0,0 @@ -// Generated by dts-bundle-generator v9.3.1 - -export type Player = { - /** - * The unique id of this player. - */ - uniqueId: string; - /** - * The username of this player. - */ - username: string; - /** - * The skin of this player. - */ - skin: Skin; -}; -/** - * A skin for a {@link Player}. - */ -export type Skin = { - /** - * The texture URL of this skin. - */ - url: string; - /** - * The model of this skin. - */ - model: Model; - /** - * Is this skin legacy? - */ - legacy: boolean; -}; -/** - * Possible models for a skin. - */ -export type Model = "default" | "slim"; -/** - * Get a player by their username or UUID. - * - * @param query the query to search for the player by - * @returns the promised player - */ -export declare const getPlayer: (query: string) => Promise; - -export {}; diff --git a/Lib/dist/index.js b/Lib/dist/index.js deleted file mode 100644 index 05d2ac6..0000000 --- a/Lib/dist/index.js +++ /dev/null @@ -1 +0,0 @@ -var d=(a)=>{return new Promise((p,b)=>{p({uniqueId:"fc1d5fe7-f29b-430d-80bb-3b093a638b0f",username:"Rainnny",skin:{url:"",model:"default",legacy:!1}})})};export{d as getPlayer};