Last active
February 25, 2020 18:26
-
-
Save reidev275/910eae1e2fe01813c50aa1f62d966e50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type JobPosting { | |
manager: string; | |
salary: number; | |
} | |
const filter: Filter<JobPosting> = | |
and( | |
equals("manager", "Bob Slydell"), | |
greater("salary", 50000) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment