Pass a Storage/Public Path Arg to Cadence in FCL

javascript
		
			import { config, query } from "@onflow/fcl";

config({
  "accessNode.api": "https://rest-testnet.onflow.org"
});

async function executeScript() {
  const result = await query({
    cadence: `
    pub fun main(pp: PublicPath, sp: StoragePath): Bool {
      return true
    }
    `,
    args: (arg, t) => [
      /*
        /public/FLOATCollectionPublicPath
      */
      arg(
        { identifier: "FLOATCollectionPublicPath", domain: "public" },
        t.Path
      ),
      /*
        /storage/FLOATCollectionStoragePath
      */
      arg(
        { identifier: "FLOATCollectionStoragePath", domain: "storage" },
        t.Path
      )
    ]
  });

  console.log({ result });
}

executeScript();