+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "Omit" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" draft = true +++ ## Omit type ### Omit type <b>Signature</b> ```typescript export declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>; ``` <b>Import</b> ```typescript import { Omit } from '@grafana/data'; ```