package expo.modules.interfaces.font;

import android.graphics.Typeface;

public interface FontManagerInterface {
  void setTypeface(String fontFamilyName, int style, Typeface typeface);
}
