You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
350 B

import { Mixin } from "ts-mixer";
import { Unfetched } from "../abstract/fetchStatus/Unfetched";
import { PotentialBinaryLeaf } from "../abstract/leaf/PotentialBinaryLeaf";
import { PotentialDataLeaf } from "../abstract/leaf/PotentialDataLeaf";
export class UnfetchedLeaf extends Mixin(
Unfetched,
PotentialBinaryLeaf,
PotentialDataLeaf,
) {}