insomnia-plugin-valorant
Version:
Adds template tags to Insomnia with Valorant data
8 lines (7 loc) • 383 B
TypeScript
export declare const infoKeys: readonly ["puuid", "shard", "region", "clientVersion"];
type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
export type LogInfo = {
[key in ArrayElement<typeof infoKeys>]: string;
};
export default function logSleuth(): Promise<Partial<LogInfo> | undefined>;
export {};