import type { Icon } from "./Icon.js"; /** * Intended to store file icons by extension */ export type SharedIconPackEntry = { /** * File extension without the dot, e.g. "txt" */ extension: string; icon: Icon; }; //# sourceMappingURL=SharedIconPackEntry.d.ts.map