Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
theproducer committed Dec 1, 2023
1 parent e9694a1 commit b36b7d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion filesystem/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ let package = Package(
dependencies: ["FilesystemPlugin"],
path: "ios/Tests/FilesystemPluginTests")
]
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import Capacitor
*/
@objc(FilesystemPlugin)
public class FilesystemPlugin: CAPPlugin, CAPBridgedPlugin {
public let identifier = "FilesystemPlugin"
public let jsName = "Filesystem"
public let identifier = "FilesystemPlugin"
public let jsName = "Filesystem"
public let pluginMethods: [CAPPluginMethod] = [
CAPPluginMethod(name: "readFile", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "writeFile", returnType: CAPPluginReturnPromise),
Expand All @@ -23,8 +23,8 @@ public class FilesystemPlugin: CAPPlugin, CAPBridgedPlugin {
CAPPluginMethod(name: "copy", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "checkPermissions", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "requestPermissions", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "downloadFile", returnType: CAPPluginReturnPromise),
]
CAPPluginMethod(name: "downloadFile", returnType: CAPPluginReturnPromise)
]
private let implementation = Filesystem()

/**
Expand Down

0 comments on commit b36b7d6

Please sign in to comment.