{"version":3,"sources":["../../../src/window/types/file-open-preference.ts"],"names":["FileOpenPreferences"],"mappings":"AAQY,IAAA,mBAAA,qBAAAA,oBAAL,KAAA;AAEL,EAAAA,qBAAA,QAAS,CAAA,GAAA,QAAA;AAGT,EAAAA,qBAAA,SAAU,CAAA,GAAA,SAAA;AAGV,EAAAA,qBAAA,KAAM,CAAA,GAAA,KAAA;AARI,EAAAA,OAAAA,oBAAAA;AAAA,CAAA,EAAA,mBAAA,IAAA,EAAA","file":"file-open-preference.mjs","sourcesContent":["/**\n * Allowed user file open preferences\n */\nexport type FileOpenPreference = 'inline' | 'desktop' | 'web';\n\n/**\n * Allowed user file open preferences\n */\nexport enum FileOpenPreferences {\n  /** Indicates that the user should be prompted to open the file in inline. */\n  Inline = 'inline',\n\n  /** Indicates that the user should be prompted to open the file in the native desktop application associated with the file type. */\n  Desktop = 'desktop',\n\n  /** Indicates that the user should be prompted to open the file in a web browser. */\n  Web = 'web',\n}\n"]}