/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CreateBookmarkRequestTagsInnerAnyOf } from './CreateBookmarkRequestTagsInnerAnyOf'; /** * * @export * @interface ResourcePinnedOnTarget */ export interface ResourcePinnedOnTarget { /** * * @type {string} * @memberof ResourcePinnedOnTarget */ 'board': ResourcePinnedOnTargetBoardEnum; /** * * @type {Array} * @memberof ResourcePinnedOnTarget */ 'resources': Array; /** * * @type {string} * @memberof ResourcePinnedOnTarget */ 'boardId': string; } /** * @export */ export declare const ResourcePinnedOnTargetBoardEnum: { readonly WorkspaceFolder: "workspace:folder"; }; export type ResourcePinnedOnTargetBoardEnum = typeof ResourcePinnedOnTargetBoardEnum[keyof typeof ResourcePinnedOnTargetBoardEnum]; /** * Check if a given object implements the ResourcePinnedOnTarget interface. */ export declare function instanceOfResourcePinnedOnTarget(value: object): value is ResourcePinnedOnTarget; export declare function ResourcePinnedOnTargetFromJSON(json: any): ResourcePinnedOnTarget; export declare function ResourcePinnedOnTargetFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourcePinnedOnTarget; export declare function ResourcePinnedOnTargetToJSON(json: any): ResourcePinnedOnTarget; export declare function ResourcePinnedOnTargetToJSONTyped(value?: ResourcePinnedOnTarget | null, ignoreDiscriminator?: boolean): any;