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