I guess TS should be source of truth so that type ...
# support-questions-legacy
a
I guess TS should be source of truth so that type is what's actually expected for the
init
method:
Copy code
export declare type TypeInput = {
    supertokens: {
        connectionURI: string;
        apiKey?: string;
    };
    apiWebProxyPath?: string;
    appInfo: AppInfo;
    recipeList: RecipeListFunction[];
    telemetry?: boolean;
    isInServerlessEnv?: boolean;
};