interlinked/source/project.ts

13 lines
272 B
TypeScript
Raw Normal View History

2022-03-07 16:33:04 +00:00
import {BaseOperation} from './gegl/exports.js';
export default interface Project {
createInputImage: boolean;
2022-03-07 16:33:04 +00:00
name: string;
operations: Array<InstanceType<typeof BaseOperation>>;
resetAlpha: boolean;
2022-03-07 16:33:04 +00:00
resolution: {
height: number;
width: number;
};
}