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.
12 lines
651 B
12 lines
651 B
import IFragment from './IFragment';
|
|
export declare type ConditionValue = boolean | string | number | null | undefined;
|
|
export declare type Condition = ConditionValue | (() => ConditionValue);
|
|
export declare function ifElse(condition: Condition, ifTrueFragment: string | IFragment, elseFragment?: string | IFragment): IfElse;
|
|
export declare class IfElse implements IFragment {
|
|
private readonly ifTrueFragment;
|
|
private readonly elseFragment?;
|
|
private readonly condition;
|
|
constructor(condition: Condition, ifTrueFragment: string | IFragment, elseFragment?: string | IFragment);
|
|
build(): string;
|
|
}
|
|
//# sourceMappingURL=IfElse.d.ts.map
|