MCPcopy Create free account
hub / github.com/firebase/firebase-tools / alias

Method alias

src/command.ts:84–87  ·  view source on GitHub ↗

* Sets an alias for a command. * @param aliases an alternativre name for the command. Users will be able to call the command via this name. * @return the command, for chaining.

(alias: string)

Source from the content-addressed store, hash-verified

82 * @return the command, for chaining.
83 */
84 alias(alias: string): Command {
85 this.aliases.push(alias);
86 return this;
87 }
88
89 /**
90 * Sets any options for the command.

Calls

no outgoing calls

Tested by

no test coverage detected