export function isVariableT<T>(obj: unknown): obj is Variable<T> {
    const otherVariable = obj as Variable<T>;

    return typeof otherVariable !== 'undefined' && otherVariable.typename === typenameVariableT;
}