/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * target: "getting-started", * trigger: Flatfile.TriggerEnum.First, * type: Flatfile.TypeEnum.Sidebar, * role: Flatfile.RoleEnum.Admin * } * * @example * { * target: "getting-started", * trigger: Flatfile.TriggerEnum.Hover, * type: Flatfile.TypeEnum.Sidebar, * role: Flatfile.RoleEnum.Guest * } */ export interface GuidanceOptions { target: string; trigger: Flatfile.TriggerEnum; type: Flatfile.TypeEnum; /** The role for which this guidance should be displayed. If not specified, guidance will be shown to both admin and guest users. */ role?: Flatfile.RoleEnum; }