fromConnString(connString: string, options: Partial<__type>): PostgresSaverconst connString = "postgresql://user:password@localhost:5432/db";
const checkpointer = PostgresSaver.fromConnString(connString, {
schema: "custom_schema" // defaults to "public"
});
await checkpointer.setup();Creates a new instance of PostgresSaver from a connection string.