# DeployResult

`interface` in `seedcord` · v0.14.0

<https://docs.seedcord.org/packages/seedcord/0.14.0/interfaces/deploy-result>

The command collections Discord returns from each scope's deploy, keyed by command id.

```ts
interface DeployResult
```

## Properties

### global

```ts
global: Collection<Snowflake, ApplicationCommand>;
```

### guilds

```ts
guilds: Collection<
    Snowflake,
    Collection<Snowflake, ApplicationCommand>
>;
```
