Import colors from Figma library #4

Merged
Sven merged 15 commits from figma into main 2022-10-08 11:14:23 +00:00
Showing only changes of commit 02d2350b29 - Show all commits

View file

@ -1,6 +1,6 @@
import Foundation
protocol Generator: class {
protocol Generator: AnyObject {
static var defaultExtension: String { get }
static var option: String { get }
@ -9,7 +9,7 @@ protocol Generator: class {
func generate(data: [String: ColorDef]) throws -> FileWrapper
}
protocol Context: class {
protocol Context: AnyObject {
var prefix: String? { get }
}