Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

Exact

export type Exact<T extends {
    [key: string]: unknown;
}> = {
    [K in keyof T]: T[K];
};