scriptable-testlab
Version:
A lightweight, efficient tool designed to manage and update scripts for Scriptable.
22 lines (19 loc) • 573 B
text/typescript
import { AbsLinearGradient } from 'scriptable-abstract';
interface LinearGradientMockState {
colors: Color[];
locations: number[];
startPoint: Point;
endPoint: Point;
}
declare class MockLinearGradient extends AbsLinearGradient<LinearGradientMockState> {
constructor();
get colors(): Color[];
set colors(value: Color[]);
get locations(): number[];
set locations(value: number[]);
get startPoint(): Point;
set startPoint(value: Point);
get endPoint(): Point;
set endPoint(value: Point);
}
export { MockLinearGradient };