class supabase.SupabaseClientimport { supabase } from "https://dotland.deno.dev/x/live@1.63.12/deps.ts"; const { SupabaseClient } = supabase; Supabase Client. An isomorphic Javascript client for interacting with Postgres. ConstructorsnewSupabaseClient(supabaseUrl: string,supabaseKey: string,options?: SupabaseClientOptions<SchemaName>,)Create a new client for use in the browser. Type ParametersoptionalDatabase = anyoptionalSchemaName extends string & keyof Database = "public" extends keyof Database ? "public" : string & keyof DatabaseoptionalSchema extends GenericSchema = Database[SchemaName] extends GenericSchema ? Database[SchemaName] : anyPropertiesprivate_getAccessTokenprivate_handleTokenChangedprivate_initRealtimeClientprivate_initSupabaseAuthClientprivate_listenForAuthEventsprotectedauthUrl: stringprotectedchangedAccessToken: string | undefinedprotectedoptionalfetch: FetchprotectedfunctionsUrl: stringprotectedheaders: { [key: string]: string; }protectedrealtime: RealtimeClientprotectedrealtimeUrl: stringprotectedrest: PostgrestClient<Database, SchemaName>protectedstorageKey: stringprotectedstorageUrl: stringprotectedsupabaseKey: stringprotectedsupabaseUrl: stringauth: SupabaseAuthClientSupabase Auth allows you to create and manage user sessions for access to data that is secured by access policies. readonlyfunctions: FunctionsClientSupabase Functions allows you to deploy and invoke edge functions. readonlystorage: SupabaseStorageClientSupabase Storage allows you to manage user-generated content, such as photos or videos. Methodschannel(name: string, opts?: RealtimeChannelOptions): RealtimeChannelCreates a Realtime channel with Broadcast, Presence, and Postgres Changes. from<TableName extends string & keyof Schema["Tables"], Table extends Schema["Tables"][TableName]>(relation: TableName): PostgrestQueryBuilder<Schema, Table>Perform a table operation. from<ViewName extends string & keyof Schema["Views"], View extends Schema["Views"][ViewName]>(relation: ViewName): PostgrestQueryBuilder<Schema, View>from(relation: string): PostgrestQueryBuilder<Schema, any>getChannels(): RealtimeChannel[]Returns all Realtime channels. removeAllChannels(): Promise<("ok" | "timed out" | "error")[]>Unsubscribes and removes all Realtime channels from Realtime client. removeChannel(channel: RealtimeChannel): Promise<"ok" | "timed out" | "error">Unsubscribes and removes Realtime channel from Realtime client. rpc<FunctionName extends string & keyof Schema["Functions"], Function_ extends Schema["Functions"][FunctionName]>(fn: FunctionName,args?: Function_["Args"],options?: { head?: boolean; count?: "exact" | "planned" | "estimated"; },): PostgrestFilterBuilder<Schema, Function_["Returns"] extends any[] ? Function_["Returns"][number] extends Record<string, unknown> ? Function_["Returns"][number] : never : never, Function_["Returns"]>Perform a function call. import supabase.SupabaseClientimport { supabase } from "https://dotland.deno.dev/x/live@1.63.12/deps.ts"; const { SupabaseClient } = supabase;