interactions.options broke

Not sure if there is a better way to do this or not but after updating from v14.17.3 I'm now getting error TS2339: Property 'options' does not exist on type 'CommandInteraction<CacheType>'. and can't find the correct type, this is my interface for the execute parameters that contains the interaction obj
export interface SlashExecute {
  /**
   * The client instance
   * @type {GBF}
   */
  client: GBF;
  /**
   * The interaction object
   * @type {CommandInteraction}
   */
  interaction: CommandInteraction;
}
image.png
Was this page helpful?