Skip to content

Commit

Permalink
⭐️ Impl: RNIModalError
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Sep 26, 2024
1 parent ced26f2 commit c00c557
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ios/Common/RNIModalError.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// RNIUtilitiesError.swift
// ReactNativeIosUtilities
//
// Created by Dominic Go on 10/18/23.
//

import Foundation
import DGSwiftUtilities
import react_native_ios_utilities


public struct RNIModalErrorMetadata: ErrorMetadata {
public static var domain: String? = "react-native-ios-utilities";
public static var parentType: String? = nil;
};

public typealias RNIModalError = RNIError<RNIModalErrorMetadata>;

0 comments on commit c00c557

Please sign in to comment.