@tsed/platform-test-sdk
Version:
Package to test platform adapter integration with Ts.ED
12 lines (11 loc) • 348 B
TypeScript
import { PlatformTestingSdkOpts } from "../interfaces/index.js";
export declare class CookiesCtrl {
/**
* Handle request and get auth from cookies
* @param authorization
*/
scenario1(authorization: string): {
authorization: string;
};
}
export declare function testCookies(options: PlatformTestingSdkOpts): void;