Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 252 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 252 Bytes

typedef_foundation

This library expose:

/// typedef for getter
typedef Getter<T> = T Function();

/// typedef for setter
typedef Setter<T> = void Function(T value);

/// typedef for void callback
typedef VoidCallback = void Function();