@adobe-uxp-types/uxp
Advanced tools
Comparing version 0.0.7-beta.2 to 0.0.7-beta.3
{ | ||
"name": "@adobe-uxp-types/uxp", | ||
"version": "0.0.7-beta.2", | ||
"version": "0.0.7-beta.3", | ||
"types": "./uxp.d.ts", | ||
@@ -12,3 +12,3 @@ "files": [ | ||
}, | ||
"gitHead": "e3c73476bb0df50d7b8910e6d1f28ff1c00670bc" | ||
"gitHead": "0333061cdfadd65f793055fa0e0b80e3f62066d4" | ||
} |
22
uxp.d.ts
@@ -11,3 +11,3 @@ // Part 0 - Generated by https://github.com/hansottowirtz/adobe-uxp-types-crawler | ||
namespace dialog { | ||
function showOpenDialog(options: { | ||
function showOpenDialog(options?: { | ||
openFile?: boolean; | ||
@@ -24,3 +24,3 @@ openDirectory?: boolean; | ||
function showSaveDialog(options: { | ||
function showSaveDialog(options?: { | ||
defaultPath?: string; | ||
@@ -128,3 +128,3 @@ title?: string; | ||
folder: Folder, | ||
options: { | ||
options?: { | ||
overwrite?: boolean; | ||
@@ -136,3 +136,3 @@ } | ||
folder: Folder, | ||
options: { | ||
options?: { | ||
overwrite?: boolean; | ||
@@ -163,7 +163,7 @@ newName?: string; | ||
read: (options: { format?: FormatSymbol }) => Promise<string | ArrayBuffer>; | ||
read: (options?: { format?: FormatSymbol }) => Promise<string | ArrayBuffer>; | ||
write: ( | ||
data: string | ArrayBuffer, | ||
options: { format?: FormatSymbol; append?: boolean } | ||
options?: { format?: FormatSymbol; append?: boolean } | ||
) => void; | ||
@@ -181,3 +181,3 @@ } | ||
name: string, | ||
options: { | ||
options?: { | ||
type?: TypeSymbol; | ||
@@ -190,3 +190,3 @@ overwrite?: boolean; | ||
name: string, | ||
options: { | ||
options?: { | ||
overwrite?: boolean; | ||
@@ -216,3 +216,3 @@ } | ||
getFileForOpening: (options: { | ||
getFileForOpening: (options?: { | ||
initialDomain?: DomainSymbol; | ||
@@ -226,3 +226,3 @@ types?: string[]; | ||
name: string, | ||
options: { | ||
options?: { | ||
initialDomain?: DomainSymbol; | ||
@@ -233,3 +233,3 @@ types?: string[]; | ||
getFolder: (options: { initialDomain?: DomainSymbol }) => Promise<Folder>; | ||
getFolder: (options?: { initialDomain?: DomainSymbol }) => Promise<Folder>; | ||
@@ -236,0 +236,0 @@ getTemporaryFolder: () => Promise<Folder>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6973