@figma-export/types
Advanced tools
Comparing version 5.0.1 to 6.0.0-beta.0
import type * as Figma from 'figma-js'; | ||
import { StringTransformer, ComponentOutputter, PageNode, ComponentFilter } from './global'; | ||
import { StyleOutputter, Style } from './styles'; | ||
import { StringTransformer, ComponentOutputter, PageNode, ComponentFilter } from './global.js'; | ||
import { StyleOutputter, Style } from './styles/index.js'; | ||
export type BaseCommandOptions = { | ||
@@ -5,0 +5,0 @@ /** |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=commands.js.map |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=global.js.map |
@@ -1,4 +0,4 @@ | ||
export * from './global'; | ||
export * from './styles'; | ||
export * from './commands'; | ||
export * from './global.js'; | ||
export * from './styles/index.js'; | ||
export * from './commands.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,20 +0,4 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./global"), exports); | ||
__exportStar(require("./styles"), exports); | ||
__exportStar(require("./commands"), exports); | ||
export * from './global.js'; | ||
export * from './styles/index.js'; | ||
export * from './commands.js'; | ||
//# sourceMappingURL=index.js.map |
import * as Figma from 'figma-js'; | ||
import { Color } from './PaintStyle'; | ||
import { Color } from './PaintStyle.js'; | ||
export type EffectStyleShadow = { | ||
@@ -4,0 +4,0 @@ type: 'DROP_SHADOW' | 'INNER_SHADOW'; |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=EffectStyle.js.map |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=GridStyle.js.map |
@@ -1,10 +0,10 @@ | ||
import { StyleNode } from '../global'; | ||
import * as PaintStyle from './PaintStyle'; | ||
import * as EffectStyle from './EffectStyle'; | ||
import * as TextStyle from './TextStyle'; | ||
import * as GridStyle from './GridStyle'; | ||
export * from './PaintStyle'; | ||
export * from './EffectStyle'; | ||
export * from './TextStyle'; | ||
export * from './GridStyle'; | ||
import { StyleNode } from '../global.js'; | ||
import * as PaintStyle from './PaintStyle.js'; | ||
import * as EffectStyle from './EffectStyle.js'; | ||
import * as TextStyle from './TextStyle.js'; | ||
import * as GridStyle from './GridStyle.js'; | ||
export * from './PaintStyle.js'; | ||
export * from './EffectStyle.js'; | ||
export * from './TextStyle.js'; | ||
export * from './GridStyle.js'; | ||
export type Style = { | ||
@@ -11,0 +11,0 @@ name: string; |
@@ -1,21 +0,5 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./PaintStyle"), exports); | ||
__exportStar(require("./EffectStyle"), exports); | ||
__exportStar(require("./TextStyle"), exports); | ||
__exportStar(require("./GridStyle"), exports); | ||
export * from './PaintStyle.js'; | ||
export * from './EffectStyle.js'; | ||
export * from './TextStyle.js'; | ||
export * from './GridStyle.js'; | ||
//# sourceMappingURL=index.js.map |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=PaintStyle.js.map |
@@ -1,3 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
export {}; | ||
//# sourceMappingURL=TextStyle.js.map |
{ | ||
"name": "@figma-export/types", | ||
"version": "5.0.1", | ||
"version": "6.0.0-beta.0", | ||
"description": "Type definition for @figma-export", | ||
@@ -23,2 +23,3 @@ "main": "dist/index.js", | ||
"license": "MIT", | ||
"type": "module", | ||
"publishConfig": { | ||
@@ -28,3 +29,3 @@ "access": "public" | ||
"engines": { | ||
"node": ">= 16.14" | ||
"node": ">= 18.12" | ||
}, | ||
@@ -40,3 +41,3 @@ "dependencies": { | ||
}, | ||
"gitHead": "b36a6dbd644dccbd461d058de6bb4a2afec0ade1" | ||
"gitHead": "559f5bfe3cf41a2cbed16a6a4348c781940f80ce" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
Yes
19724
249
2